home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
grafik
/
bildanzeiger
/
egsflick
/
makefile
< prev
next >
Wrap
Makefile
|
1995-03-09
|
195b
|
16 lines
# Makefile for (x/e)flick
CC= dcc
LDLIBS= -legs -legsblit -legsintui -legsgfx
SRCS = eflick.c read.c
OBJS = eflick.o read.o
all:: egsflick
egsflick: $(OBJS)
$(CC) -o $@ $(OBJS) $(LDLIBS)